home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
apps
/
database
/
postgres
/
postgre2.z
/
postgre2
/
doc
/
psprint
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-08-27
|
210 b
|
17 lines
#!/bin/sh
#
# Print a Postscript file. MAKE SURE THAT PRINTER IS A POSTSCRIPT PRINTER!!!
#
PRINTER="lw"
PRINT=`pwd`/print
for i in psdump/* psdump/*/*
do
if (test -f $i)
then
lpr -P$PRINTER $i
fi
done